For my CNC Controller app, I want to have a thread running on the DSP that will field a wide range of different, simple requests - coolant on/off, spindle control, goto tool change position, etc. - under user control. This makes the GUI application code
for many functions little more than sending a message to the DSP, and all the function customization can then be done in DSP code. The most obvious (at least to me) way of handling this is to have a thread running which polls a pre-defined range of Persist
vars, the first of which would be a "command" code. When this word is set to a non-zero value the DSP code then looks at the other words for any parameters needed for the requested command, executes the command, clears the command word, and wait for the next
command. Commands would be queued on the PC side, and metered out by a timer handler.
Is this reasonable, or is there a better way to handle this?
Regards,
Ray L.